home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Trading on the Edge
/
Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin
/
pc
/
pc_files
/
mktdata
/
econdata
/
docutils
/
amiarc.exe
/
RUN.INC
< prev
next >
Wrap
Text File
|
1989-02-08
|
1KB
|
27 lines
#define MAXLOAD 4000
#define MAXVAR 1000
#define MAXLAG 40
#define MAXFIX 100
#define NCMAX 5000
/*
MAXLOAD - maximum number of variables and lagged values of variables
MAXVAR - maximum number of variables
MAXLAG - maximum number of lags on any one variable.
NCMAX - maximum number of characters that can be used to store the
names in an indx file
names - workspace bank names stored here
indx - key to reading workspace names stored here
ns_ws - number of series on workspace file
nobs_ws number of observations per series to be written onto the
workspace file
jahrba - base year of workspace file
*/
int cumul[MAXVAR+1],first,last,period,MaxIter;
FILE *fopen(), *fpiws,*fpws;
float date1,date2,fixvalue[MAXFIX],prdate1,prdate2,date,_x[2],_y[2];
double atof();
int ns_model,fix_count,iter_count,whichfix[MAXVAR],fixpos[MAXFIX];
char debug,fixtype[MAXFIX],lag[MAXVAR],s2sls,d_flag[2];
char *gstrcpy(),*strcat();